home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
lib
/
partman
/
valid_filesystems
/
05ext3
next >
Wrap
Text File
|
2008-10-29
|
278b
|
26 lines
#!/bin/sh
dev=$1
id=$2
property=$3
[ -f /var/lib/partman/ext3 ] || exit 0
case $property in
formatable)
echo ext3
;;
existing)
[ -f $id/detected_filesystem ] || exit 0
fs=$(cat $id/detected_filesystem)
case "$fs" in
ext3)
echo ext3
;;
esac
;;
esac